home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
prompts.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
843b
|
22 lines
/* RCSVER $Id: prompts.sql,v 1.3 1999-03-21 14:22:16-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: prompts.sql
* Date: 02/17/1999
* memo: Randy Wood
* Description: Create the prompts table. This table contains the prompts
* used at the OCU.
* Changes:
************************************************************************* */
CREATE TABLE prompts
(
prompt_id NUMBER(38), /* ID of prompt */
descr VARCHAR2(20), /* Text of prompt */
name VARCHAR2(30), /* Name of prompt ("P_NAME...") */
config_num NUMBER(38)
CONSTRAINT ref_prompts REFERENCES configset(num)
ON DELETE CASCADE,
CONSTRAINT pk_prompts PRIMARY KEY (prompt_id, config_num)
);